home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / program / flip3206.zip / TYPES.H < prev   
C/C++ Source or Header  |  1997-01-17  |  776b  |  24 lines

  1. // --------------------------------------------------------------------------
  2. //  TYPES.H                                      copyright (c) 1996, brioche
  3. // --------------------------------------------------------------------------
  4. //  some useful data types I define for my own pleasure! =;)
  5. // --------------------------------------------------------------------------
  6. //  e-mail: 106146.1452@compuserve.com
  7. // --------------------------------------------------------------------------
  8.  
  9. #ifndef __TYPES
  10.  
  11. #define __TYPES
  12.  
  13. #define TRUE   (1==1)
  14. #define FALSE  (1==0)
  15.  
  16. typedef signed char SBYTE;
  17. typedef signed short SWORD;
  18. typedef signed int SDWORD;
  19. typedef unsigned char UBYTE, BOOL;
  20. typedef unsigned short UWORD;
  21. typedef unsigned int UDWORD;
  22.  
  23. #endif
  24.